net/http/internal.chunkedReader.n (field)

9 uses

	net/http/internal (current package)
		chunked.go#L39: 	n        uint64 // unread bytes in chunk
		chunked.go#L59: 	cr.n, cr.err = parseHexUint(line)
		chunked.go#L78: 	cr.excess -= 16 + (2 * int64(cr.n))
		chunked.go#L83: 	if cr.n == 0 {
		chunked.go#L119: 		if cr.n == 0 {
		chunked.go#L132: 		if uint64(len(rbuf)) > cr.n {
		chunked.go#L133: 			rbuf = rbuf[:cr.n]
		chunked.go#L139: 		cr.n -= uint64(n0)
		chunked.go#L142: 		if cr.n == 0 && cr.err == nil {